home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 8: LINUX Games / Linux Cubed Series 8 - LINUX Games.iso / games / x11 / strategy / xnetbris.00 / xnetbris / README < prev    next >
Text File  |  1995-09-19  |  2KB  |  55 lines

  1.             Netbrisk Version 1.00
  2.  
  3. This a networked-multiplayer X-Windows brisk card game.
  4. There a 2 clients:
  5.     client-text is text only and is used mainly for debugging
  6.     xbrisk is a X-Windows client which has scanned bitmaps for cards
  7.               You NEED the Xpm library which is freely available.
  8.  
  9. Brisk is an Italian card game and uses a special deck of 40 cards each with
  10. 4 suits of 10 cards each.  There is a text file (BRISK.RULES) for 
  11. people who don't know the first thing about brisk.
  12.  
  13. Here is a list of files:
  14.  
  15. Imakefile     (an imakefile)
  16. Makefile      (a sample Linux makefile if you don't have xmake)
  17. chris.c       (a dumb computer player)
  18. client-text.c (a text-based client brisk program)
  19. client.c      (the network back-end for the xbrisk client)  
  20. xbrisk.c      (the graphical front-end for the xbrisk client)
  21. bitmaps/*.xpm (the bitmaps for the xbrisk program, all 1-bit xpm pixmaps)
  22. server.c      (the server for netbrisk using TCP/IP)
  23. README        (this file)
  24. COPYING       (how you are allowed to copy this package)
  25. TODO          (some future improvments, explains current bugs)
  26. BRISK.RULES   (a simple primer for brisk)
  27.  
  28. To create executables:
  29.     
  30. Run xmkmf to generate a Makefile and then type "make".  If everything goes well,
  31. you should get 4 executables: chris, client-text, server and xbrisk.
  32.  
  33. Once you have the binaries, type "server 2 chaos" to start up the server.  You
  34. can then throw in a computer player by typing "chris localhost", then you can
  35. join the game by typing "xbrisk localhost".
  36.   Then, if you want to play against another player, start the server as before,
  37. but type "xbrisk localhost" on the machine that the server is running on and 
  38. "xbrisk <sitname>" where sitename is the name of the machine which is running
  39. the server.
  40.  
  41. --Known Problems---
  42.   If you are running under SunOS and the server crashes with a segmentation
  43. fault, try compiling it with the System V compiler as this seems to fix the
  44. problem.
  45.   Also, on SunOS, I've seen cases where the only bitmap to display is the 
  46.  background one.  If you are having this problem, then try to decrease the number
  47. of colours in the bitmaps by using:
  48.      xpmtoppm <filename> | ppmquant 2 | ppmtoxpm > <filename>.xpm
  49.   for each file in the bitmaps/ directory.  Don't be surprised if xpmtoppm gives
  50. you an error - there's a bug in it which needs to be fixed (add #include <math.h>
  51. at the start of it).
  52.  
  53. Comments and suggestions are welcome at bartlett@io.org
  54.  
  55. -Brendan Bartlett